home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / fractals / slicer / install-ilbm-lib < prev    next >
Text File  |  1994-11-17  |  1KB  |  39 lines

  1. .K ""
  2. echo "This script will install the ILBM library, after first checking"
  3. echo "to see if you already have one installed."
  4. echo ""
  5. echo "If you have one installed, it will check the version number of the"
  6. echo "installed one and ask if you wish to update it."
  7. echo ""
  8.  
  9. FailAt 20
  10.  
  11. ask "Do you wish to continue with the installation? [y/n]"
  12. if not warn
  13.     skip NoInstall
  14. endif
  15.  
  16. if not exists libs:ILBM.library
  17.   echo "No existing ILBM.library, installing version 0.5 ..."
  18.   copy libs/ILBM.library libs:ILBM.library
  19. else
  20.   failat 20
  21.   echo "Found " noline
  22.   version ILBM.library 0 5
  23.   if warn
  24.     ask "Do you wish to update libs:ILBM.library to version 0.5? [y/n]"
  25.     if warn
  26.       echo "Updating libs:ILBM.library..."
  27.       protect libs:ILBM.library rwed
  28.       copy libs/ILBM.library libs:ILBM.library
  29.     else
  30.       echo "libs:ILBM.library unchanged."
  31.     endif
  32.   else
  33.     echo "The current installed version is up to date."
  34.   endif
  35. endif
  36. lab NoInstall
  37. echo "*nAll Done.  Click close gadget to get rid of window."
  38. endcli > nil:
  39.